From 454ae490487659a51d71adc77aa02892d0725235 Mon Sep 17 00:00:00 2001 From: Alexandru Isaila Date: Mon, 19 Feb 2018 15:07:06 +0200 Subject: [PATCH] asm-x86/monitor: Add MONITOR_EVENT_INTERRUPT to common capabilities Signed-off-by: Alexandru Isaila Acked-by: Razvan Cojocaru --- xen/include/asm-x86/monitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/asm-x86/monitor.h b/xen/include/asm-x86/monitor.h index 59a2610617..7a9e1e8ba7 100644 --- a/xen/include/asm-x86/monitor.h +++ b/xen/include/asm-x86/monitor.h @@ -80,13 +80,13 @@ static inline uint32_t arch_monitor_get_capabilities(struct domain *d) capabilities = ((1U << XEN_DOMCTL_MONITOR_EVENT_GUEST_REQUEST) | (1U << XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT) | (1U << XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR) | + (1U << XEN_DOMCTL_MONITOR_EVENT_INTERRUPT) | (1U << XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG)); if ( cpu_has_vmx ) { capabilities |= ((1U << XEN_DOMCTL_MONITOR_EVENT_DEBUG_EXCEPTION) | (1U << XEN_DOMCTL_MONITOR_EVENT_CPUID) | - (1U << XEN_DOMCTL_MONITOR_EVENT_INTERRUPT) | (1U << XEN_DOMCTL_MONITOR_EVENT_EMUL_UNIMPLEMENTED)); /* Since we know this is on VMX, we can just call the hvm func */ -- 2.30.2